body {
    background: #f5f7fa;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    margin: 0;
    padding: 0;
}

header {
    background: #4f8cff;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

main {
    max-width: 800px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(79,140,255,0.08);
    padding: 2rem;
}

button, .btn {
    background: #4f8cff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover, .btn:hover {
    background: #2563eb;
}

input, textarea, select {
    border: 1px solid #cfd8dc;
    border-radius: 4px;
    padding: 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
    font-size: 1rem;
    box-sizing: border-box;
}

h1, h2, h3 {
    color: #2563eb;
}

a {
    color: #4f8cff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Objectives and Values color scheme to match top bar */
.header-section h1,
.center-title {
    background: linear-gradient(90deg, #e76a3c 0%, #e85d8e 100%);
    color: #fff;
    padding: 0.5em 0;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1em;
}

.objectives-list li {
    color: #e76a3c;
    font-weight: 500;
    margin-bottom: 0.5em;
}

.values-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(231, 106, 60, 0.08);
}

.values-table th {
    background: linear-gradient(90deg, #e76a3c 0%, #e85d8e 100%);
    color: #fff;
    padding: 0.75em;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
}

.values-table td {
    padding: 0.75em;
    border-bottom: 1px solid #f3c6b6;
    color: #e76a3c;
}

.values-table tr:last-child td {
    border-bottom: none;
}